Welcome![Sign In][Sign Up]
Location:
Search - socket java

Search list

[JSP/Java例10.04 Socket服务器端程序

Description: SOCKET服务器端程序-SOCKET server procedures
Platform: | Size: 4096 | Author: 曹坚 | Hits:

[JSP/JavaJava源码:Socket编程

Description: Java源码:Socket编程-Java source : Socket Programming
Platform: | Size: 1024 | Author: 马骏 | Hits:

[WEB MailJava用Socket实现EMAIL的实例

Description: 这个不是用javamail,而是socket,值得一看。-JavaMail, but socket overseas.
Platform: | Size: 3072 | Author: 地球 | Hits:

[DocumentsJava入门笔记9

Description: Java入门笔记9_Socket 来源于:从互联网收集整理并转载-Java 9_Socket from entry Notes : collected from the Internet and reproduced
Platform: | Size: 13312 | Author: 李文 | Hits:

[CommunicationPaintChat日本Java画图聊天程序

Description: 一个既可画图又可聊天的JAVA程序,用SOCKET编程实现-A progamm which could be used both in chating and drawing. It s implemented in sockets.
Platform: | Size: 934912 | Author: 周爱民 | Hits:

[GDI-Bitmapsocket聊天室

Description: 一个用socket编的聊天室 以为java平台,实现聊天的小程序-socket with a series of the chat room thought java platform to achieve chatting small program
Platform: | Size: 8192 | Author: | Hits:

[File Operatesocket实现点对点文件传输

Description: 简单用SOCKET实现本地文件传输,,,,,,,,,,,,,,,,,,支持多种文件欢迎大家下载,,,,,,,,,,,,,,,,,,, 绝对可用-it can trasport files in p2p mode using socket,it support many types,welcome to use.
Platform: | Size: 2048 | Author: 老大不小 | Hits:

[Internet-Network利用Socket进行Java网络编程

Description: 利用socket进行网上对话聊天,包括服务器端和客户端程序源码及用户界面的建立.-You can chat with socket online,including server and client source code and the implementation of GUI
Platform: | Size: 6144 | Author: 王妍 | Hits:

[JSP/JavaSocket套接字—Java套接字编程(上1)

Description: Socket套接字—Java套接字编程(上1)-Socket-Java socket programming (on a)
Platform: | Size: 352256 | Author: YUE | Hits:

[JSPJava技术大合集

Description: 《Java技术大合集》,电子书籍都是从网络上搜集整理成TXT文本文件。收集了:Java Socket编程、JSP语法、WebSphere快速入门等。-"Java technology, Collection," e-books are collected from the network up into TXT text files. Collected : Java Socket Programming, JSP syntax, such as WebSphere Quick Start.
Platform: | Size: 1303552 | Author: 邓志伟 | Hits:

[Internet-Network运用异步输入输出流编写Socket进程通信

Description: 代码号为”Merlin”的J2SE1.4带来了一些激动人心的新特性,诸如对正则表达式的支持,异步输入输出流,通道(Channel),字符集等.虽然该版本还处在测试阶段,但这些新特性早已让开发人员们跃跃欲试.在Merlin发布之前,异步输入输出流的应用还只是C,C++程序员的特殊武器 在Merlin中引入异步输入输出机制之后,Java程序员也可以利用它完成很多简洁却是高质量的代码了.本文将介绍怎样使用异步输入输出流来编写Socket进程通信程序.-code, as "Merlin" J2SE1.4 brought some exciting new features, such as the right is a regular expression support, asynchronous input and output streams, channel (Channel), such as character set. Although this version is still in the testing stage, but these new features make the developers who the dismissive. before the publication of the Merlin, asynchronous input and output streams of only C, C programmer in the special weapons Merlin introduced asynchronous input-output mechanisms, Java programmers can also use a lot of it is simple but high-quality code. this article will introduce how to use asynchronous losers into the output stream to the process of preparing Socket Communication Program.
Platform: | Size: 5120 | Author: 陈浩 | Hits:

[Internet-NetworkJava网络编程(socket---网上广播)

Description: Java网络编程(socket---网上广播)-Java Network Programming (socket-- Internet Broadcasting)
Platform: | Size: 2048 | Author: 贾名 | Hits:

[Web Server用Java实现Web服务器

Description: 用Java实现Web服务器 本文实现了GET请求的Web服务器程序的方法,通过创建ServerSocket类对象,监听端口8080; 等待、接受客户机连接到端口8080; 创建与socket字相关联的输入流和输出流 然后,读取客户机的请求信息,若请求类型是GET,则从请求信息中获取所访问的HTML文件名,如果HTML文件存在,则打开HTML文件,把HTTP头信息和HTML文件内容通过socket传回给Web浏览器,然后关闭文件。否则发送错误信息给Web浏览器。最后,关闭与相应Web浏览器连接的socket字。-Java Web server is to achieve a GET request to the Web server, through the creation of ServerSocket class object, bugging port 8080; Wait, a client is connected to port 8080; Socket character creation and the associated input and output streams flow then read the client's request information, if the request is the type of GET, request information from being accessed visit HTML document, and if the HTML document exists, then open the HTML file, HTTP headers and HTML files through the socket sent back to the Web browser and then close the file. Otherwise, send the wrong message to the Web browser. Finally, the closing and the corresponding Web browser connected to the socket word.
Platform: | Size: 10240 | Author: 雨岳 | Hits:

[Internet-Network使用java控制HTTP协议客户端应用

Description:  Http客户端程序已集成在Java语言中,可以通过URLConnection类调用。遗憾的是,由于SUN没有公布Http客户程序的源码,它实现的细节仍是一个谜。本文根据HTTP协议规范,用Java.net.Socket类实现一个HTTP协议客户端程序。 -Http client program has been integrated into the Java language, URLConnection can call category. Unfortunately, because Sun has not announced Http client source code, it achieved the details are still a mystery. According to the HTTP protocol specification. with the realization of a category Java.net.Socket HTTP client program.
Platform: | Size: 6144 | Author: 郑描中 | Hits:

[Communicationjava实现服务器和客户机通讯的的方法

Description: 本文介绍一种用Java的Socket和ServerSocket实现服务器和客户机通讯的的方法。原理是在服务器端建立ServerSocket端口并监听,接收到客户端的连接请求时建立Socket,得到Socket的输入输出流。在客户端新建Socket并获得输入输出流。服务器和客户端的输入输出流建立后使用writeLine()和println()方法彼此发送和接收数据。为提高代码效率,建立两个类clientAgent和serverAgent。 -This article introduces a Java ServerSocket socket server and and client communication methods. The principle is established on the server side ServerSocket ports and eavesdropping, reception to the client connection request to establish socket, the socket to be input and output streams. The new Socket client and access input and output streams. Server and client input and output streams used after the establishment of writeLine (), and println () side France each other to send and receive data. To improve code efficiency, the establishment of two categories clientAgent and serverAgent.
Platform: | Size: 6144 | Author: 郑描中 | Hits:

[Internet-NetworkPromptCommunication

Description: 采用专业级的多线程、Socket、Swing图形等Java技术。-professional-grade multi-threaded, socket, Java Swing graphics technology.
Platform: | Size: 581632 | Author: dove | Hits:

[Internet-Networksocket(chlientandserver)

Description: 一个用JAVA实现的socket通信,包含服务器端和客户端。-JAVA with a socket communications, including server and the client.
Platform: | Size: 5120 | Author: sunny | Hits:

[JSPjava-qhmideleschooldaxue

Description: 清华大学Java课程.讲解JAVA语法,Java语言的发展及相关技术的介绍,Java技术和平台在网络计算及电子商务中的应用介绍;   ■ Java语言的基础知识:Java语言的主要特点,设计思想,Java虚拟机,垃圾回收机制,安全性的保证机制;   ■ Java语言的基本语法规范,包括标识符、关键字、数据类型、表达式和流控制,程序基本结构;   ■ 面向对象技术的基本特点,Java语言的面向对象特性,类和对象的概念,封装性、继承性、多态性,Java语言的特殊属性;Java程序的例外处理机制和方法;   ■ Java语言的输入/输出处理机制和方法,常用的输入/输出方法,输入/输出处理的应用;   ■ Java语言的图形用户界面设计:AWT界面设计的基本方法,常用的组件类库,图形用户界面的事件处理模型和方法,JFC介绍,Swing图形界面设计;   ■ Java Applet程序设计,Applet程序的特点,运行机制,与浏览器的集成,安全机制的使用;   ■ 多线程程序设计,进程和线程的联系和区别,多线程程序设计的一般方法,线程的生命周期,线程状态的控制,多线程的互斥和同步;   ■ Java语言的网络编程技术和应用,Socket程序设计,Client/Server程序设计; -err
Platform: | Size: 5586944 | Author: fengzheng1920 | Hits:

[JSP/JavaSPerformance

Description: Socket JAVA 测试客户端,用于压力测试时的数据发送.-Socket JAVA client testing, pressure testing for the data transmission.
Platform: | Size: 1024 | Author: 李朝阳 | Hits:

[JSP/JavaSocket

Description: socket聊天程序 简单实用实现多种功能,包含使用说明-socket chatting procedures simple and practical realization of a variety of functions, including use
Platform: | Size: 10240 | Author: windy】 | Hits:
« 12 3 4 5 6 7 8 9 10 ... 50 »

CodeBus www.codebus.net